home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / art&graf.ix / art-0039 / source / dcprnt09.def < prev    next >
Text File  |  1997-04-16  |  1KB  |  33 lines

  1. DEFINITION MODULE DCPrnt09; (* Print Picture *)
  2.  
  3.  
  4. (*--------------------------------------------------------------------*)
  5. (* This library module will do the printing of a hi-res picture.      *)
  6. (*                                                                    *)
  7. (*--------------------------------------------------------------------*)
  8.  
  9.  
  10. (*--------------------------------------------------------------------*)
  11. (*   This is version 2.00         August 1988     L.G.Miller          *)
  12. (*                                                                    *)
  13. (*           version 1.10         August 1987     L.G.M               *)
  14. (*           version 1.00         April 1987      L.G.M               *)
  15. (*--------------------------------------------------------------------*)
  16.  
  17. FROM DCGlobal        IMPORT PrinterTypes,
  18.                             PictureImage,
  19.                             PrintImage,
  20.                             HiResScreen;
  21.  
  22.  
  23. PROCEDURE PrintHiResPicture09L( VAR PictureDetails : PictureImage;
  24.                                 VAR PrintDetails   : PrintImage;
  25.                                 VAR Picture        : HiResScreen ) ;
  26.  
  27. PROCEDURE PrintHiResPicture09P( VAR PictureDetails : PictureImage;
  28.                                 VAR PrintDetails   : PrintImage;
  29.                                 VAR Picture        : HiResScreen ) ;
  30.  
  31.  
  32. END DCPrnt09.
  33.